* CentOS 7 [#e3200a69]

SELinuxの状態を調べる:sestatus

setenforce 0 でモードを enforcing から permissive に変えられる。

本当にSELinuxを切るには /etc/selinux/config で SELINUX=disabled にして shutdown -r now

サービスを開始・終了する例:

 systemctl start mariadb.service
 systemctl restart httpd.service
 systemctl restart sshd.service
 # systemctl stop iptables.service
 systemctl stop firewalld.service

起動時に自動起動するかしないかの例(/etc/systemd/system 以下にシンボリックリンクが作られる)

 systemctl enable mariadb.service
 systemctl enable httpd.service
 # systemctl disable iptables.service
 systemctl disable firewalld.service